home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / Demos / Duel / lobby.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-31  |  1.1 KB  |  34 lines

  1. //-----------------------------------------------------------------------------
  2. // File: Lobby.h
  3. //
  4. // Desc: DP lobby related routines include file
  5. //
  6. // Copyright (C) 1995-2001 Microsoft Corporation. All Rights Reserved.
  7. //-----------------------------------------------------------------------------
  8. #define IDIRECTPLAY2_OR_GREATER
  9. #include <dplobby.h>
  10.  
  11.  
  12. //-----------------------------------------------------------------------------
  13. // LobbyMessageReceive Modes
  14. //-----------------------------------------------------------------------------
  15. #define LMR_PROPERTIES          0
  16. #define LMR_CONNECTIONSETTINGS  1
  17.  
  18.  
  19.  
  20.  
  21. //-----------------------------------------------------------------------------
  22. // Prototypes
  23. //-----------------------------------------------------------------------------
  24. HRESULT DPLobbyRelease();
  25. HRESULT DPLobbySetConnectionSettings();
  26.  
  27. BOOL    DoingLobbyMessages();
  28. HRESULT LobbyMessageInit();
  29. HRESULT LobbyMessageReceive( DWORD dwMode );
  30. HRESULT LobbyMessageSetProperty( const GUID* pPropTagGUID, VOID* pData,
  31.                                  DWORD dwDataSize );
  32.  
  33.  
  34.